Docs
get https://api.console.iugu.com/workspace/{workspace_id}/entitlements

List installed apps with the requested features.

Sem ações implementadas definidas

Request

Path variables

workspace_id

Required

Type: string

The unique identifier of the workspace

Ex: abcd1234efgh5678ijkl

Query params

features

Type: string

Features to search in the workspace. Leave empty to search all features.

Ex: activity_consumer, workflow_provider, embedding_provider

Response

200

Success

workspace
Object

Information about the workspace.

apps
Array of objects

List of installed apps with the requested features.

Example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "workspace": {
    "id": "abcd1234efgh5678ijkl",
    "name": "iugu IP SA",
    "alias": "iugu"
  },
  "apps": [
    {
      "id": "abcd1234efgh5678ijkl",
      "name": "iugu IP SA",
      "description": "Main app for iugu",
      "service_api_url": "iugu.com/service_api",
      "logo_url": "iugu.com/logo.png",
      "categories": "finance, accounting"
    }
  ]
}

401

Unauthorized

error
String

Error type.

Ex: JWT::ExpiredSignature

error_description
String

Error description.

Ex: Signature has expired

Example
1
2
3
4
{
  "error": "JWT::ExpiredSignature",
  "error_description": "Signature has expired"
}